home *** CD-ROM | disk | FTP | other *** search
/ Best of Shareware / Best of PC Windows Shareware 1.0 - Wayzata Technology (7111) (1993).iso / mac / DOS / UTILITY / OSASS11 / OSHELP.EXE / OSHINTS.HLP < prev    next >
Text File  |  1992-09-26  |  7KB  |  157 lines

  1.  
  2.                                 HELPFUL HINTS
  3.  
  4.     CAPSLOCK
  5.     ────────
  6.  
  7.     There are  some programs  which you  may run  that are operated more
  8.     easily with the CapsLock  mode turned on.   This might be a  program
  9.     that requires entry only in uppercase mode.  You can easily use  the
  10.     CAPSLOCK utility to  turn the CapsLock  mode on before  starting the
  11.     program and turn  it off after  ending the program.   This would  be
  12.     most easily  accomplished through  a batch  file.   For example, say
  13.     you  had  a  program  called  ASCIICAPS.EXE.   You  could create the
  14.     following batch file:
  15.  
  16.                     REM *** ASCIICAPS.BAT Batch File ***
  17.                     CAPSLOCK ON
  18.                     ASCIICAPS.EXE
  19.                     CAPSLOCK OFF
  20.                     REM *** END OF ASCIICAPS.BAT ***
  21.  
  22.     CURSOR
  23.     ──────
  24.  
  25.     Display monitors vary greatly in their clarity.  The default  cursor
  26.     is not  always clearly  visible on  all displays.   This utility  is
  27.     useful for enlarging the cursor size to a more visible size.
  28.  
  29.     In addition, some software programs are not "well-behaved" and  upon
  30.     exiting  the  program,  you  find  that  your  cursor has completely
  31.     disappeared!  This utility can easily recover your cursor.
  32.  
  33.     NUMLOCK
  34.     ───────
  35.  
  36.     There are  some programs  which you  may run  that are operated more
  37.     easily with the  NumLock mode turned  on.  This  might be a  program
  38.     that requires  the entry  of many  numerical values,  for example  a
  39.     spreadsheet program.   You can  easily use  the NUMLOCK  utility  to
  40.     turn the  NumLock mode  on before  starting the  program and turn it
  41.     off  after  ending   the  program.   This   would  be  most   easily
  42.     accomplished  through  a  batch  file.   For  example, say you had a
  43.     spreadsheet  program  called  SPREAD.EXE.   You  could  create   the
  44.     following batch file:
  45.  
  46.                     REM *** GOSPREAD.BAT Batch File ***
  47.                     NUMLOCK ON
  48.                     SPREAD.EXE
  49.                     NUMLOCK OFF
  50.                     REM *** END OF GOSPREAD.BAT ***
  51.  
  52.  
  53.  
  54.     REBOOT
  55.     ──────
  56.  
  57.     The REBOOT utility provides  a convenient method for  rebooting your
  58.     machine automatically from within a batch file.  Many people set  up
  59.     various configurations for  their computer.   They have a  number of
  60.     AUTOEXEC.BAT  and  CONFIG.SYS  files  which  meet various needs.  By
  61.     employing the  REBOOT command,  you may  easily set  up a batch file
  62.     which  changes  your  system  files  and then restarts your machine.
  63.     For example,  you might  create a  batch file  named BOOT.BAT  which
  64.     will   switch   you   back   and   forth   between   two   different
  65.     configurations.   You specify  which configuration  you desire  as a
  66.     command line argument to the BOOT command.
  67.  
  68.                     REM *** BOOT.BAT Batch File ***
  69.                     IF "%1"=="1" GOTO CONFIG1
  70.                     IF "%1"=="2" GOTO CONFIG2
  71.                     GOTO EXIT
  72.                     :CONFIG1
  73.                     COPY C:\AUTOEXEC.001 C:\AUTOEXEC.BAT
  74.                     COPY C:\CONFIG.001 C:\CONFIG.SYS
  75.                     GOTO RESTART
  76.                     :CONFIG2
  77.                     COPY C:\AUTOEXEC.002 C:\AUTOEXEC.BAT
  78.                     COPY C:\CONFIG.002 C:\AUTOEXEC.BAT
  79.                     GOTO RESTART
  80.                     :RESTART
  81.                     REBOOT /W
  82.                     :EXIT
  83.                     REM *** END OF BOOT.BAT ***
  84.  
  85.     SCRLLOCK
  86.     ────────
  87.  
  88.     There are  some programs  which you  may run  that are operated more
  89.     easily with the Scroll Lock mode turned on.  You can easily use  the
  90.     SCRLLOCK utility  to turn  the Scroll  Lock mode  on before starting
  91.     the program and turn  it off after ending  the program.  This  would
  92.     be most easily accomplished through a batch file.  For example,  say
  93.     you  had  a  program  called  KEYPAD.EXE.   You  could  create   the
  94.     following batch file:
  95.  
  96.                     REM *** KEYPAD.BAT Batch File ***
  97.                     SCRLLOCK ON
  98.                     KEYPAD.EXE
  99.                     SCRLLOCK OFF
  100.                     REM *** END OF KEYPAD.BAT ***
  101.  
  102.     SELECT
  103.     ──────
  104.  
  105.     The SELECT utility  is very useful  for marking files  upon which to
  106.     perform many common DOS commands.   For example, let's say you  wish
  107.     to delete  the files  FOO.TXT, 123.DOC,  and LETTER.TXT.   Using the
  108.     normal DOS command DEL alone,  you would be forced to  perform three
  109.     separate  delete  operations.   With  the  addition  of  the  SELECT
  110.     utility, however, this becomes a very simple task.  Simply type  the
  111.     following:
  112.  
  113.                     SELECT DEL (*.*)
  114.  
  115.     You would then mark the three  files you wish deleted and press  the
  116.     Enter key.  You're done!  This  is such a common task that it  would
  117.     be useful to create a  batch program to simplify this  even further,
  118.     for example:
  119.  
  120.  
  121.  
  122.                     REM *** ZAP.BAT Batch File ***
  123.                     IF "%1"=="" GOTO SELECTALL
  124.                     SELECT DEL (%1)
  125.                     GOTO EXIT
  126.                     :SELECTALL
  127.                     SELECT DEL (*.*)
  128.                     :EXIT
  129.                     REM *** END OF ZAP.BAT ***
  130.  
  131.     This  very  handy  little  tool  will  automatically call the SELECT
  132.     utility  set  up  for  deleting  files.   If  you  pass  it  a  file
  133.     specification, it  will use  it for  creating a  list of  files from
  134.     which to select.  Otherwise, it will present you with a list of  all
  135.     the files in the current directory.
  136.  
  137.     Another  use  of  the  SELECT  utility  is  with  other RITE Toolkit
  138.     utilities.  For  example, if you  wished to view  a number of  files
  139.     with the VIEW  program, rather than  viewing each one  individually,
  140.     you  could  use  the  SELECT  utility  to  simplify  this  task, for
  141.     example:  SELECT VIEW (*.TXT)
  142.  
  143.     You could then  mark the files  for viewing, press  Enter, and would
  144.     then be presented  with each file  in turn for  viewing.  You  could
  145.     enhance this  operation by  creating a  batch file  to perform  this
  146.     same operation:
  147.  
  148.                     REM *** VIEWLIST.BAT Batch File ***
  149.                     IF "%1"=="" GOTO VIEWALL
  150.                     SELECT VIEW (%1)
  151.                     GOTO EXIT
  152.                     :VIEWALL
  153.                     SELECT VIEW (*.*)
  154.                     :EXIT
  155.                     REM *** END OF VIEWLIST.BAT ***
  156.  
  157.